Skip to main content

Fixed Deposit Maturity Trigger

POST /fixed-deposit/mature

Description

Triggers the maturity process for a fixed deposit account. This endpoint requires a request body with necessary details about the fixed deposit account and the purpose of withdrawal.

Request Body:

NameTypeDescription
fixedDepositAccountUUIDstringThe unique identifier for the fixed deposit account.
purposeOfWithdrawalstringThe purpose for withdrawing the matured fixed deposit amount.

Example Request Body:

{
"fixedDepositAccountUUID": "string",
"purposeOfWithdrawal": "string"
}'

Sample Response: 200

{
"status": true,
"statusCode": 0,
"message": "string",
"data": {},
"errors": [
{
"message": "string",
"data": {},
"descriptiveMessage": "string"
}
]
}

LANGUAGE

AUTHORIZATION

Bearer

CURL REQUEST


curl --request POST \ 
--url /fixed-deposit/mature \
--header 'accept: application/json' \
--header 'content-type: application/json'

RESPONSE


Click Try It! to start a request and see the response here!